home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 - Inside Community Club / Acrobat Pro 6 D.bin / installer / Data1.cab / HTML2PDF.api / EXVW / 4504 < prev    next >
Encoding:
Text File  |  2003-05-15  |  718 b   |  25 lines

  1. gStrTextSettings    = '$$$/Dialogs/HTML2PDF/TextSettings/DialogTitle';
  2. gStrGeneralPanel    = '$$$IDS_GENERAL_CONFIG_PANEL_NAME';
  3. gStrFontPanel        = '$$$IDS_FONT_CONFIG_PANEL_NAME';
  4.  
  5. gWidestPanelNameWidth = max    ( zstring_width( zstring: gStrGeneralPanel )
  6.                             , zstring_width( zstring: gStrFontPanel )
  7.                             ) + (max_char_width() * 2);
  8. gListWidth = gWidestPanelNameWidth + gSpace;
  9. gListHeight = 100;
  10.  
  11. gPanelWidth  = 100 + gMarginWidth;
  12. gPanelHeight = gListHeight;
  13.  
  14.  
  15. dialog( name: gStrTextSettings, target_id: 'Tabs', first_tab:'Tabs' )
  16. {
  17.     view( align_children: align_left  )
  18.     {
  19.         view( align_children: align_top )
  20.         {
  21.             tab_group( item_id: 'Tabs', width: 400, height: 400 );
  22.         }
  23.         ok_cancel();
  24.     }
  25. }